home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1997 September
/
Macworld (1997-09).dmg
/
Serious Software
/
Cherwell Scientific Demos
/
DIMPLE
/
Install Files
/
IOL
/
Sobel.IOL
< prev
next >
Wrap
Text File
|
1997-02-25
|
342b
|
19 lines
!DIMPLE IOL PROGRAM
! Edge detection using the Sobel operator
images
x input ;
d1 temp ;
d2 temp ;
y "Sobel" output ;
operations
d1 = filter x ( 1, 2, 1,
0, 0, 0,
-1, -2, -1 ) ;
d2 = filter x (-1, 0, 1,
-2, 0, 2,
-1, 0, 1 ) ;
y = sqrt( d1*d1 + d2*d2) ;